﻿@font-face{
font-family: simli;
src: url('../../fonts/SIMLI.TTF'),
     url('../../fonts/SIMLI.TTF'); /* IE9 */
}
html, body {
  position: relative;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
}
/* header */
#header{
  position: fixed;
  z-index:99;
  background: #fff;
  height: 7.5rem;
  line-height: 7.5rem;
}
.index-header{
  width: 89%;
  margin:auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  width: 18%;
}
#mnav > ul{
  text-align: left;
}
.nav-pc{
  width: 65%;
}
.nav-pc ul li {
  width: 16%;
  line-height: normal;
}
/* 滚屏 */
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.down{
  display:none;
  position: absolute;
  bottom:3VH;
  left:50%;
  transform: translateX(-50%);
  z-index:5;
  width: 20px;
  height: 30px;
  animation: start 1s infinite ease-in-out;
}
.down img{
  width: 100%;
  height: auto;
}
@keyframes start{
  0%, 30% {
      opacity: 0;
      transform: translate(-50%,-20px);
  }

  60% {
      opacity: 1;
      transform: translate(-50%,0);
  }
  100% {
      opacity: 0;
      transform: translate(-50%,20px);
  }
}
@keyframes bjmove{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}
/* sl1 */
.sl1-slide{
  width: 100%;
  height: 100%;
}
.sl1-slide > div.sl1-bj{
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 7.5rem;
}
.sl1-slide > div.sl1-bjm{
  display: none;
}
.sl1-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl1-sl1-bj{
  position: relative;
}
.sl1-sl1-text{
  position: absolute;
  transform: translateY(-100%);
  font-family: "simli";
}

.sl11-t-tit1{
  font-family: "simli";
  -webkit-animation: slOutLeft .5s ease-in-out forwards;
  -o-animation: slOutLeft .5s ease-in-out forwards;
  animation: slOutLeft .5s ease-in-out forwards;
}
.sl11-t-tit2{
  font-family: "simli";
  -webkit-animation: slOutRight .5s ease-in-out forwards;
  -o-animation: slOutRight .5s ease-in-out forwards;
  animation: slOutRight .5s ease-in-out forwards;
}
.body-sl1-slide.swiper-slide-active .sl1-sl1-slide.swiper-slide-active .sl1-sl1-text.active .sl11-t-tit1{
  font-family: "simli";
  -webkit-animation: slInLeft .8s ease-in-out forwards;
  -o-animation: slInLeft .8s ease-in-out forwards;
  animation: slInLeft .8s ease-in-out forwards;
}
.body-sl1-slide.swiper-slide-active .sl1-sl1-slide.swiper-slide-active .sl1-sl1-text.active .sl11-t-tit2{
  font-family: "simli";
  -webkit-animation: slInRight .8s ease-in-out forwards;
  -o-animation: slInRight .8s ease-in-out forwards;
  animation: slInRight .8s ease-in-out forwards;
}
@keyframes slInLeft{
  0%{
      opacity: 0;
      transform: translateX(-100VW);
  }
  100% {
      opacity: 1;
      transform: translateX(-15%);
  }
}
@keyframes slOutLeft{
  0%{
      opacity: 1;
      transform: translateX(-15%);
  }
  100% {
      opacity: 0;
      transform: translateX(-100VW);
  }
}
@keyframes slInRight{
  0%{
      opacity: 0;
      transform: translateX(100VW);
  }
  100% {
      opacity: 1;
      transform: translateX(15%);
  }
}
@keyframes slOutRight{
  0%{
      opacity: 1;
      transform: translateX(15%);
  }
  100% {
      opacity: 0;
      transform: translateX(100VW);
  }
}
.sl11-t-tit span{
  color: #fff;
  font-size: 3rem;
  font-family: "simli";
}
.sl1-pagination.swiper-pagination-bullets{
  bottom:5VH;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.sl1-pagination .swiper-pagination-bullet{
  width: 2rem;
  height: 2VH;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  position: relative;
  border-bottom:.2rem solid #fff;
}
.sl1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  height: 5VH;
}
.sl1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
  content:attr(indexdata);
  position: absolute;
  font-size: 0.9rem;
  color:#fff;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
/* sl2 */
.body-sl2-slide{
  background: #f6f6f6;
}
.sl2-con{
  padding-top:7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sl2-left{
  width: 45VW;
  margin-left:5VW;
  opacity: 0;
  -webkit-animation: fadeOutLeft .5s ease-in-out .5s forwards;
  -o-animation: fadeOutLeft .5s ease-in-out .5s forwards;
  animation: fadeOutLeft .5s ease-in-out .5s forwards;
}
.body-sl2-slide.swiper-slide-active .sl2-left{
  opacity: 0;
  -webkit-animation: fadeInLeft .5s ease-in-out .5s forwards;
  -o-animation: fadeInLeft .5s ease-in-out .5s forwards;
  animation: fadeInLeft .5s ease-in-out .5s forwards;
}
.sl2-lcc-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom:1.5rem;
  border-bottom:.2rem solid #caddec;
}
.sl2-lcct-left{
  font-size: 1.8rem;
  color: #222222;
  font-weight: bold;
}
.sl2-lcct-right > a{
  display: flex;
  justify-content: flex-end;
}
.sl2-lcctr-left{
  font-size:1rem;
  padding:0 2VW;
  min-width: 4em;
  text-transform: uppercase;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  background: #fff;
  color:#222;
}
.sl2-lcctr-right{
  font-size:1rem;
  padding:0 .5rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  background: #0088f1;
  color:#fff;
  transition:padding .5s;
}
.sl2-lcct-right:hover .sl2-lcctr-right{
  padding:0 1rem;
  transition:padding .5s;
}
.sl2-lcc-center{
  color:#222;
  font-size: 1rem;
  line-height: 200%;
  text-align: left;
  text-indent: 2em;
  padding:2rem 0;
}
.sl2-lccb-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.sl2-lccbt-left{
  font-size:1.5rem;
  color:#222;
  font-weight: bold;
}
.sl2-lccbt-right{
  position: relative;
}
.sl2-button-next.swiper-button-next, .sl2-button-prev.swiper-button-prev{
  width: 2rem;
  height: 2rem;
  background-size: 1rem 1rem;
  border:.1rem solid #0088f1;
  border-radius:100%;
}
.sl2-button-prev.swiper-button-prev{
  left:-6rem;
}
.sl2-wrapper{
  display: flex;
  align-items: flex-end;
}
.sl2-slide{
  align-items: flex-end;
}
.sl2-slide > span:first-child{
  font-family: "Times New Roman";
  font-size:1.8rem;
  line-height: normal;
}
.sl2-slide > span:last-child{
  font-size:1rem;
  margin-left:.2rem;
}
.sl2-lccb-con{
  padding:1rem 0;
  border-top:.2rem solid #caddec;
  border-bottom:.2rem solid #caddec;
}
.sl2-slide{
  cursor: pointer;
}
.sl2-slide.active > span:first-child{
  font-size: 2rem;
  font-weight: bold;
  color: #0088f1;
}
.sl2-slide.active > span:last-child{
  font-size: 1.1rem;
  color: #0088f1;
}
.sl2-lccbc-con{
  height: 10VH;
  overflow: hidden;
  min-height: 3rem;
}
.sl2-lccbc-con > .sl2-lccbcc-text{
  display: none;
  text-align: left;
  font-size:1rem;
  color:#222;
  padding:2rem 0;
}
.sl2-lccbc-con > .sl2-lccbcc-text:first-child{
  display: block;
}
.sl2-right{
  opacity: 0;
  width: 50VW;
  height: 100VH;
  -webkit-animation: fadeOutRight .5s ease-in-out .5s forwards;
  -o-animation: fadeOutRight .5s ease-in-out .5s forwards;
  animation: fadeOutRight .5s ease-in-out .5s forwards;
}
.body-sl2-slide.swiper-slide-active .sl2-right{
  opacity: 0;
  -webkit-animation: fadeInRight .5s ease-in-out .5s forwards;
  -o-animation: fadeInRight .5s ease-in-out .5s forwards;
  animation: fadeInRight .5s ease-in-out .5s forwards;
}
.sl2-r-con{
  margin-left:3VW;
  width: 47VW;
  height: 100%;
  overflow: hidden;
}
.sl2-r-con > div{
  width: 100%;
  height: 100%;
}
.sl2-r-con img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-animation: bjmove 20s ease-in-out infinite forwards;
  -o-animation: bjmove 20s ease-in-out infinite forwards;
  animation: bjmove 20s ease-in-out infinite forwards;
}
.sl2-rc-pc{
  display: block;
}
.sl2-rc-m{
  display: none;
}
/* sl3 */
.sl3-con{
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 7.5rem;
}
.sl3-slide{
  width: 20%;
  transition: width .5s;
}
.sl3-slide.swiper-slide-active{
  width: 40%;
  transition: width .5s;
}
.sl3-slide .sl3-hide{
  display: block;
  width: 100%;
  height: 100%;
}
.sl3-hide-con{
  width: inherit;
  height: inherit;
}
.sl3-hide-con > a{
  display: block;
  width: inherit;
  height: inherit;
}
.sl3-hide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl3-slide .sl3-show{
  display: none;
}
.sl3-slide.swiper-slide-active .sl3-hide{
  display: none;
}
.sl3-slide.swiper-slide-active .sl3-show{
  display: block;
}
.sl3-show{
  width: 100%;
  height: 100%;
}
.sl3-show-con{
  position: relative;
  width: inherit;
  height: inherit;
}
.sl3-sc-bj{
  width: inherit;
  height: inherit;
}
.sl3-sc-bj img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl3-sc-con{
  position: absolute;
  bottom:3rem;
  left:0;
  width: 86%;
  background: rgba(0,136,241,.8);
  padding: 8VH 7%;
  opacity: 0;
  -webkit-animation: fadeOutDown 0.5s ease-in-out 0s forwards;
  -o-animation: fadeOutDown 0.5s ease-in-out 0s forwards;
  animation: fadeOutDown 0.5s ease-in-out 0s forwards;
}
.body-sl3-slide.swiper-slide-active .sl3-slide.swiper-slide-active .sl3-sc-con{
  opacity: 0;
  -webkit-animation: fadeInUp 0.5s ease-in-out 0s forwards;
  -o-animation: fadeInUp 0.5s ease-in-out 0s forwards;
  animation: fadeInUp 0.5s ease-in-out 0s forwards;
}
.sl3-scc-tit{
  text-align: left;
  padding-bottom:5VH;
}
.sl3-scc-tit > span:first-child{
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
}
.sl3-scc-tit > span:first-child:after{
  content:'';
  position: absolute;
  width: 50%;
  height: .2rem;
  background: #fff;
  bottom:-.8rem;
  left:0;
}
.sl3-scc-tit > span:last-child{
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.sl3-scc-text{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sl3-scct-list{
  width: 45%;
  text-align: left;
  position: relative;
  padding-left:5%;
}
.sl3-scct-list:before{
  content:'';
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: .5rem;
  height: .5rem;
  border:1px solid #fff;
  border-radius:100%;
}
.sl3-scct-list > a{
  color:#fff;
  font-size: 1rem;
  line-height: 200%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.sl3-button-next, .sl3-button-prev{
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 100%;
  font-size: 1.5rem;
  color: #373837;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
}
.sl3m-con{
  display: none;
}
/* sl4 */
.sl4-con-bj{
  width: 100%;
  height: 100%;
  background: url('../images/sl4-bj.jpg') no-repeat;
  background-size:cover;
  display: flex;
  align-items: center;
}
.sl4-con{
  width: 90%;
  margin:auto;
  padding-top:7.5rem;
}
.sl4-c-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl4-ct-left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  -webkit-animation: fadeOutLeft .5s ease-in-out;
  -o-animation: fadeOutLeft .5s ease-in-out;
  animation: fadeOutLeft .5s ease-in-out;
}
.body-sl4-slide.swiper-slide-active .sl4-ct-left{
  opacity: 0;
  -webkit-animation: fadeInLeft .5s ease-in-out .2s forwards;
  -o-animation: fadeInLeft .5s ease-in-out .2s forwards;
  animation: fadeInLeft .5s ease-in-out .2s forwards;
}
.sl4-ctl-left{
  text-align: left;
}
.sl4-ctll-tit{
  color:#222;
  font-size: 1.8rem;
  font-weight: bold;
}
.sl4-ctll-titsub{
  color:#222;
  font-size: .9rem;
  text-transform: uppercase;
}
.sl4-ctl-right{
  margin-left:2rem; 
}
.sl4-ctl-right div{
  width: 2rem;
  height: 2rem;
  background: #0088f1;
  color:#fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  text-align: center;
}
.sl4-ct-right{
  width: 70%;
  text-align: left;
  opacity: 0;
  -webkit-animation: fadeOutRight .5s ease-in-out;
  -o-animation: fadeOutRight .5s ease-in-out;
  animation: fadeOutRight .5s ease-in-out;
}
.body-sl4-slide.swiper-slide-active .sl4-ct-right{
  opacity: 0;
  -webkit-animation: fadeInRight .5s ease-in-out .2s forwards;
  -o-animation: fadeInRight .5s ease-in-out .2s forwards;
  animation: fadeInRight .5s ease-in-out .2s forwards;
}
.sl4-ct-right p{
  color:#222;
  font-size: 1rem;
  line-height: 200%;
}
.sl4-c-bottom{
  margin-top:8VH;
  opacity: 0;
  -webkit-animation: fadeOutDown .5s ease-in-out;
  -o-animation: fadeOutDown .5s ease-in-out;
  animation: fadeOutDown .5s ease-in-out;
}
.body-sl4-slide.swiper-slide-active .sl4-c-bottom{
  opacity: 0;
  -webkit-animation: fadeInUp.5s ease-in-out .2s forwards;
  -o-animation: fadeInUp .5s ease-in-out .2s forwards;
  animation: fadeInUp .5s ease-in-out .2s forwards;
}
.sl4-cb-con{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl4-cbc-list{
  width: 16%;
  position: relative;
  margin-right:.8%;
  background: #fff;
}
.sl4-cbc-list:last-child{
  margin-right:0%;
}
.sl4-cbcl-img{
  opacity: 0;
  transition: opacity .5s;
}
.sl4-cbc-list.active .sl4-cbcl-img{
  opacity: 1;
  transition: opacity .5s;
}
.sl4-cbcl-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl4-cbcl-line{
  position: absolute;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  top: 0;
  left: 0;
  margin:1rem;
}
.sl4-cbcl-lt{
  position: absolute;
  left:0;
  top:0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,.6);
  transition: width .5s;
}
.sl4-cbc-list.active .sl4-cbcl-lt{
  width: 100%;
  transition: width .5s;
}
.sl4-cbcl-ll{
  position: absolute;
  left:0;
  bottom:0;
  width: 1px;
  height: 0;
  background: rgba(255,255,255,.6);
  transition: height .5s;
}
.sl4-cbc-list.active .sl4-cbcl-ll{
  height: 100%;
  transition: height .5s;
}
.sl4-cbcl-lb{
  position: absolute;
  width: 0;
  height: 1px;
  right:0;
  bottom:0;
  background: rgba(255,255,255,.6);
  transition: width .5s;
}
.sl4-cbc-list.active .sl4-cbcl-lb{
  width: 100%;
  transition: width .5s;
}
.sl4-cbcl-lr{
  position: absolute;
  right:0;
  top:0;
  width: 1px;
  height: 0;
  background: rgba(255,255,255,.6);
  transition: height .5s;
}
.sl4-cbc-list.active .sl4-cbcl-lr{
  height: 100%;
  transition: height .5s;
}
.sl4-cbcl-text{
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width: 100%;
}
.sl4-cbclt-icon{
  width: 30%;
  display: inline-block;
}
.sl4-cbclt-icon img{
  width: 100%;
}
.sl4-cbc-list.active .sl4-cbclt-icon img{
  filter: brightness(100);
}
.sl4-cbclt-tit{
  font-size: 1.5rem;
  color:#222;
  margin-top: 3VH;
  transition: color .5s;
}
.sl4-cbc-list.active .sl4-cbclt-tit{
  color: #fff;
  transition: color .5s;
}
.sl4-cbclt-titsub{
  font-size: 1rem;
  color:rgba(34,34,34,.8);
  text-transform: uppercase;
  transition: color .5s;
}
.sl4-cbc-list.active .sl4-cbclt-titsub{
  color: rgba(255,255,255,.8);
  transition: color .5s;
}
.sl4-cbclt-more{
  margin-top: 3VH;
}
.sl4-cbclt-more a span:first-child{
  font-size: .9rem;
  color:#222;
}
.sl4-cbc-list.active .sl4-cbclt-more a span:first-child{
  color: #fff;
  transition: color .5s;
}
.sl4-cbclt-more a span:last-child{
  background: #1170df;
  font-size: .8rem;
  color:#fff;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  display: inline-block;
  line-height: 1rem;
  text-align: center;
}
/* sl5 */
.sl5-con-bj{
  width: 100%;
  height: 100%;
  background: url('../images/sl5-bj.jpg') no-repeat;
  background-size:cover;
  display: flex;
  align-items: center;
}
.sl5-con {
  width: 90%;
  height: 100%;
  margin: auto;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl5-c-left{
  width: 16%;
}
.sl5-cl-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl5-clt-left{
  text-align: left;
}
.sl5-cltl-tit {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.sl5-cltl-titsub {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
}
.sl5-clt-right div {
  width: 2rem;
  height: 2rem;
  background: #0088f1;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  text-align: center;
}
.sl5-cl-bottom{
  margin-top:5VH;
}
.sl5-clb-list{ 
  margin-top:2VH;
  height: 4rem;
  line-height: 4rem;
}
.sl5-clb-list > a{
  display: flex;
  align-items: center;
}
.sl5-clb-list div{
  display: inline-block;
}
.sl5-clbl-tit{
  width: 70%;
  font-size: 1rem;
  color:#222;
  background: #fff;
  transition: all .5s;
}
.sl5-clb-list.active .sl5-clbl-tit{
  color: #fff;
  background: #0088f1;
  transition: all .5s;
}
.sl5-clbl-arrow{
  width: 0;
  opacity: 0;
  font-size: 2rem;
  color:#222;
  background: #fff;
  transition: all .5s;
}
.sl5-clb-list.active .sl5-clbl-arrow{
  width: 30%;
  opacity: 1;
  color: #fff;
  background: #0088f1;
  transition: all .5s;
}
.sl5-c-right{
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl5-c-right .sl5-cr-con{
  display: none;
}
.sl5-c-right .sl5-cr-con.active{
  display: flex;
  width: 100%;
  height: 100%;
}
.sl5-cr-list{
  width: 33%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  border-left:.1rem solid rgba(255,255,255,.8);
  position: relative;
  cursor: pointer;
}
.sl5-cr-list:after{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index:0;
  transition:background .5s;
}
.sl5-cr-list.active:after{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  z-index:0;
  transition:background .5s;
}
.sl5-crl-con{
  width: 80%;
  margin:auto;
  z-index: 1;
}
.sl5-crlct-time{
  text-align: left;
  border-bottom:1px solid rgba(255,255,255,.6);
  padding-bottom:2VH;
}
.sl5-crlct-md{
  font-size: 2rem;
  color: #fff;
}
.sl5-crlct-y{
  font-size: 1rem;
  color: #fff;
}
.sl5-crlct-more{
  display: none;
}
.sl5-crlc-center{}
.sl5-crlcc-tit{
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin:3VH 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sl5-crlcc-con{
  font-size: .8rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom:3VH;
  line-height: 300%;
}
.sl5-crlc-bottom{
  padding-top: 0;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.sl5-cr-list .sl5-crlc-bottom{
  justify-content: flex-start;
  transition:all 1s;
}
.sl5-cr-list.active .sl5-crlc-bottom{
  justify-content: flex-end;
  transition:all 1s;
}
/*.sl5-cr-list .sl5-crlc-bottom:before{
  content: '';
  position: absolute;
  width: 1px ;
  height: 0;
  background: #fff;
  right:5rem;
  top:-2VH;
  transform:rotate(50deg);
  transition:all .1s;
}
.sl5-cr-list.active .sl5-crlc-bottom:before{
  height: 20VH;
  transition:all .1s;
}
.sl5-cr-list.active .sl5-crlc-bottom > span:first-child{
  opacity: 0;
}*/
.sl5-crlc-bottom > span:first-child{
  font-size: 1rem;
  color: #fff;
  opacity: 1;
}
.sl5-crlc-bottom > span:last-child{
  font-size: 1rem;
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  background: #0088f1;
  border-radius:100%;
  text-align: center;
  line-height: 1.5rem;
  display: inline-block;
  margin-left:.5rem;
  transition:all .5s;
}
.sl5-cr-list.active .sl5-crlc-bottom > span:last-child{
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  transition:all .5s;
}
/* sl6 */
.body-sl6-slide{
  background: #f6f6f6;
}
.sl6-con {
  margin-top: 7.5rem;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.sl6-c-left{
  width: 35%;
  position: absolute;
  top:50%;
  left:5VW;
  transform:translateY(-50%);
  z-index: 2;
}
.sl6-cl{
  opacity: 0;
  -webkit-animation: fadeOutLeft .2s ease-in-out;
  -o-animation: fadeOutLeft .2s ease-in-out;
  animation: fadeOutLeft .2s ease-in-out;
}
.body-sl6-slide.swiper-slide-active .sl6-cl{
  opacity: 0;
  -webkit-animation: fadeInLeft .5s ease-in-out .5s forwards;
  -o-animation: fadeInLeft .5s ease-in-out .5s forwards;
  animation: fadeInLeft .5s ease-in-out .5s forwards;
}
.sl6-cl-con{
  width: 100%;
  height: 100%;
  border:.4rem solid #0088f1;
  border-right:none;
  position: relative;
  box-sizing: border-box;
}
.sl6-cl-con:after{
  content:'';
  position: absolute;
  right:-6VW;
  top:-.4rem;
  width: 100%;
  height: 100%;
  border:.4rem solid #fff;
  border-left:none;
  z-index:-1;
}
.sl6-clc-con{
  width: 85%;
  margin:auto;
  padding:3VH 0;
}
.sl6-clcc-text{
  text-align: left;
}
.sl6-clcct-t{
  display: flex;
  align-items: center;
  margin-top:1.5VH;
}
.sl6-clcct-t1{
  font-size:1.6rem;
  color:#222;
  font-weight: bold;
  margin-bottom: 2VH;
}
.sl6-clcct-tt{
  font-size:1rem;
  color:#222;
  margin-left:.5rem;
}
.sl6-clc-con p{
  display: none;
}
.sl6-clcc-map{
  margin-top:3VH;
}
/* .sl6-cl-con #map{
  height:20VH !important;
} */
.sl6-c-right{
  width: 60%;
  height: 100%;
  overflow: hidden;
}
.sl6-cr-img{
  width: 100%;
  height: 100%;
}
.sl6-c-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-animation: bjmove 20s ease-in-out infinite forwards;
  -o-animation: bjmove 20s ease-in-out infinite forwards;
  animation: bjmove 20s ease-in-out infinite forwards;
}
@media (max-width: 991px) and (min-width: 768px){
  .sl11-t-tit span {
    font-size: 2rem;
  }
  .sl2-lcct-left {
    font-size: 1.3rem;
  }
  .sl2-slide > span:first-child {
    font-size: 1.2rem;
  }
  .sl2-slide.active > span:first-child {
    font-size: 1.3rem;
  }
  .sl2-slide > span:last-child {
    font-size: .8rem;
  }
  .sl2-slide.active > span:last-child {
    font-size: .9rem;
  }
  .sl4-cbcl-text {
    width: calc(100% - 2rem);
  }
  .sl4-cbclt-tit {
    font-size: 1.2rem;
    margin-top: 1VH;
  }
  .sl4-cbclt-titsub {
    font-size: .8rem;
  }
  .sl4-cbclt-more {
    margin-top: 1VH;
  }
  .sl5-cltl-tit {
    font-size: 1.3rem;
  }
}
@media (max-width: 769px) and (min-width:767px){
	.hamburger {
		top: 22px;
	}
	.logo {
		width: 30%;
		margin-top: 0;
	}
	.sl5-crlc-top {
		display: flex;
		flex-direction: column;
	}
	.sl5-crlct-time {
		margin: auto;
	}
	.sl5-crlc-top > a{
		display: flex;
		justify-content: center;
	}
}
@media (max-width: 767px){
	.logo {
		width: 45%;
		margin-top: 0;
	  }
}
@media (max-width: 768px){
  /* header start */
  #header {
    height: 75px;
    line-height: 75px;
    padding:0;
  }
  .index-header {
    width: 95%;
    padding: 0;
  }
  .hamburger {
    background: #0088f1;
    line-height: normal;
    top:21px;
  }
  .nav-pc ul li {
    width: 100%;
    line-height: 250%;
  }
  /* header end */
  .down{
	  display:block;
  }
  /* sl1 */
  .sl1-slide > div.sl1-bjm{
    width: 100%;
    height: 100%;
    display: block;
  }
  .sl1-slide > div.sl1-bj{
    display: none;
  }
  .sl11-t-tit span {
    font-size: 1.5rem;
    display: block;
  }
  .sl11-t-tit > span:nth-child(2) {
    display: none;
  }
  .sl11-t-tit1{
    -webkit-animation: fadeOutLeft .5s ease-in-out .5s forwards;
    -o-animation: fadeOutLeft .5s ease-in-out .5s forwards;
    animation: fadeOutLeft .5s ease-in-out .5s forwards;
  }
  .sl11-t-tit2{
    -webkit-animation: fadeOutRight .5s ease-in-out .5s forwards;
    -o-animation: fadeOutRight .5s ease-in-out .5s forwards;
    animation: fadeOutRight .5s ease-in-out .5s forwards;
  }
  .body-sl1-slide.swiper-slide-active .sl1-sl1-slide.swiper-slide-active .sl1-sl1-text.active .sl11-t-tit1{
    -webkit-animation: fadeInLeft .5s ease-in-out .5s forwards;
    -o-animation: fadeInLeft .5s ease-in-out .5s forwards;
    animation: fadeInLeft .5s ease-in-out .5s forwards;
  }
  .body-sl1-slide.swiper-slide-active .sl1-sl1-slide.swiper-slide-active .sl1-sl1-text.active .sl11-t-tit2{
    -webkit-animation: fadeInRight .5s ease-in-out .5s forwards;
    -o-animation: fadeInRight .5s ease-in-out .5s forwards;
    animation: fadeInRight .5s ease-in-out .5s forwards;
  }
  .sl1-sl1-text {
    transform: translateY(-90%);
  }
  .sl11-t-tit1 > span:first-child{
    transform:translateX(-3rem);
  }
  .sl11-t-tit1 > span:last-child{
    transform:translateX(0);
  }
  .sl11-t-tit2 > span:first-child{
    transform:translateX(-1.5rem);
  }
  .sl11-t-tit2 > span:last-child{
    transform:translateX(1.5rem);
  }
  /* sl2 */
  .body-sl2-slide{
    align-items: flex-start;
  }
  .sl2-con {
    width: 100%;
    padding-top: 75px;
    flex-direction: column;
    height: calc(100% - 75px);
  }
  .sl2-left {
    width: 95%;
    margin-left: 0;
    margin:auto;
    float: none;
  }
  .sl2-lcc-top {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
  }
  .sl2-lcct-left {
    font-size: 1.3rem;
    text-align: center;
    float: none;
    width: 100%;
    padding:2.5VH 0;
    padding-top: 0;
  }
  .sl2-lcct-right{
    display: none;
  }
  .sl2-lcc-center{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    padding: 0;
  }
  .sl2-lcc-bottom{
    padding-top:4VH;
  }
  .sl2-lccb-con {
    padding: 1rem 0 0;
  }
  .sl2-lccbt-left {
    font-size: 1.3rem;
  }
  .sl2-lccbt-right {
    margin-top: 1rem;
  }
  .sl2-button-next.swiper-button-next, .sl2-button-prev.swiper-button-prev {
    width: 1.5rem;
    height: 1.5rem;
    background-size: .8rem .8rem;
  }
  .sl2-button-prev.swiper-button-prev {
    left: -4.5rem;
  }
  .sl2-slide > span:first-child {
    font-size: 1.1rem;
  }
  .sl2-slide > span:last-child {
    font-size: 0.8rem;
  }
  .sl2-slide.active > span:first-child {
    font-size: 1.2rem;
  }
  .sl2-slide.active > span:last-child {
    font-size: 1rem;
    color: #0088f1;
  }
  .sl2-lccbc-con > .sl2-lccbcc-text {
    font-size: .8rem;
    padding: 1rem 0;
  }
  .sl2-right {
    width: 100%;
    height: auto;
  }
  .sl2-r-con {
    margin-left: 0;
    width: 100%;
  }
  .sl2-rc-pc{
    display: none;
  }
  .sl2-rc-m{
    display: block;
  }
  /* sl3 */
  .sl3-con{
    display: none;
  }
  .sl3m-con{
    display: block;
    background: #1b1c1e;
    margin-top: 75px;
    height: calc(100% - 75px);
  }
  .sl3m-c-list{
    position: relative;
    width: 100%;
    height: 16%;
    margin-bottom:.8%;
  }
  .sl3m-c-list:last-child{
    margin-bottom:0%;
  }
  .sl3m-cl-img{
    width: 100%;
    height: 100%;
  }
  .sl3m-cl-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sl3m-cl-more{
    position: absolute;
    right:5%;
    top:50%;
    transform: translateY(-50%);
  }
  .sl3m-cl-more a{
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background: #0088f1;
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    font-weight: bold;
  }
  /* sl4 */
  .sl4-con {
    width: 95%;
    padding-top: 75px;
  }
  .sl4-c-top {
    display: block;
  }
  .sl4-ctll-tit {
    font-size: 1.5rem;
  }
  .sl4-ct-right{
    margin-top:1VH;
  }
  .sl4-ct-right p {
    color: #222;
    font-size: .9rem;
    line-height: 160%;
  }
  .sl4-ct-right {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .sl4-c-bottom {
    margin-top: 1VH;
  }
  .sl4-cb-con {
    flex-wrap: wrap;
  }
  .sl4-cbc-list {
    width: 49%;
    margin-right: 2%;
    margin-top:1VH;
    height: 21VH;
  }
  .sl4-cbc-list:nth-child(2n) {
    margin-right: 0%;
  }
  .sl4-cbcl-img{
    height: 100%;
  }
  .sl4-cbcl-line{
    display: none;
  }
  .sl4-cbcl-text {
    ;
  }
  .sl4-cbclt-tit {
    font-size: 1rem;
    margin-top: 1VH;
  }
  .sl4-cbclt-titsub {
    font-size: .8rem;
  }
  .sl4-cbclt-more {
    margin-top: 1VH;
  }
  /* sl5 */
  .sl5-con-bj {
    background: url(../images/sl5-bjm.jpg) no-repeat;
    background-position:center center;
  }
  .sl5-con {
    width: 100%;
    padding-top: 75px;
    display: block;
  }
  .sl5-c-left {
    width: 95%;
    margin:auto;
  }
  .sl5-cl-top {
    justify-content: flex-start;
    margin-top: 1VH;
  }
  .sl5-clt-right{
    margin-left:10VW;
  }
  .sl5-cl-bottom {
    margin-top: 3VH;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sl5-clb-list div.sl5-clbl-arrow {
    display: none;
  }
  .sl5-clb-list {
    margin-top: 0;
    width: 24%;
  }
  .sl5-clbl-tit {
    width: 100%;
  }
  .sl5-c-right {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 5VH;
  }
  .sl5-c-right .sl5-cr-con.active {
    display: block;
  }
  .sl5-cr-list {
    width: 100%;
    height: auto;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.6);
  }
  .sl5-cr-list:last-child{
    border-bottom: 1px solid rgba(255,255,255,.6);
  }
  .sl5-crl-con {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2VH 0;
  }
  .sl5-crlc-top{
    width: 25%;
    border-right: 1px solid rgba(255,255,255,.6);
  }
  .sl5-crlct-time {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sl5-crlct-md {
    font-size: 1.5rem;
  }
  .sl5-crlct-more{
    display: flex;
    justify-content: flex-start;
    margin-top:1VH;
  }
  .sl5-crlct-more > span:first-child {
    font-size: .8rem;
    color: #fff;
  }
  .sl5-crlct-more > span:last-child {
    font-size: .8rem;
    color: #fff;
    width: 1rem;
    height: 1rem;
    background: #0088f1;
    border-radius: 100%;
    text-align: center;
    line-height: 1rem;
    display: inline-block;
    margin-left: .5rem;
  }
  .sl5-crlc-center {
    width: 65%;
  }
  .sl5-crlcc-tit {
    margin: 0;
  }
  .sl5-crlcc-con {
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    margin-top:2VH;
  }
  .sl5-crlc-bottom {
    display: none;
  }
  /* sl6 */
  .body-sl6-slide{
    background: url('../images/sl6-bjm.jpg') no-repeat;
    background-size: 100% 100%;
    background-position:center center;
  }
  .sl6-con {
    margin-top: 75px;
  }
  .sl6-c-left {
    width: 100%;
    left: 0;
  }
  .sl6-cl{
    width: 90%;
    margin:auto;
  }
  .sl6-cl-con {
    border: none;
    background: rgba(255,255,255,.9);
  }
  .sl6-cl-con:after {
    border: none;
  }
  .sl6-clcc-text {
    text-align: center;
  }
  .sl6-clcct-t1 {
    font-size: 1.4rem;
    color: #0088f1;
    position: relative;
    margin-bottom:6VH;
  }
  .sl6-clcct-t1:after {
    content:'Yantai Nanyao Industrial Co., Ltd.';
    position: absolute;
    bottom:-1rem;
    left:50%;
    transform:translateX(-50%);
    width: 100VW;
    font-size: .6rem;
    color:#202020;
    font-weight: normal;
    text-transform: uppercase;
  }
  .sl6-clcct-tt {
    font-size: .9rem;
  }
  .sl6-c-right {
    display: none;
  }
}
@media (max-height: 800px){
	.sl1-sl1-text {
		transform: translateY(-50%);
	}
	.sl2-lcc-center {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		padding: 0;
	}
	.sl2-lcc-bottom{
		margin-top: 3VH;
	}
}